home *** CD-ROM | disk | FTP | other *** search
- //------------------------------------------------------
- // CaptureLossNotifyWindow.cs ⌐ 2001 by Charles Petzold
- //------------------------------------------------------
- using System;
- using System.Drawing;
- using System.Windows.Forms;
-
- interface ICaptureLossNotify
- {
- void OnLostCapture();
- }
-
- class CaptureLossNotifyWindow: NativeWindow
- {
- public ICaptureLossNotify control;
-
- protected override void WndProc(ref Message message)
- {
- if (message.Msg == 533) // WM_CAPTURECHANGED
- control.OnLostCapture();
-
- base.WndProc(ref message);
- }
- }
-